home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- # -- Touch the /System/Library/Extensions dir, and load our kext
-
- echo 'kext postinstall script-----'
- touch /System/Library/Extensions
- #kextload /System/Library/Extensions/AmbrosiaAudioSupport.kext
- sudo kextload -b "com.AmbrosiaSW.AudioSupport"
-
- # -- Now launch the new WireTap application
-
- echo 'Launching WireTap Pro-----'
- open "/Applications/WireTap Pro/"
-
- exit 0
-